home *** CD-ROM | disk | FTP | other *** search
Wrap
; Install Organiser 96 Plus Pack ; 1/11/95 by Mark Jackson ; $VER: 1.1 ;------------------- ; String definitions ;------------------- (set #Welcome-Message (cat "\n\nWelcome to the \"Organiser 96 Plus Pack\" Installer\n\n\n" "Copyright (C) 1995 Digita International." )) (set #InsertDiskMsg (cat "\nPlease insert the disk labelled\n\n\"")) (set #DiskHelp (cat "\n If you know that the correct disk is in the drive, but you still cannot proceed, " "then the name of the disk is incorrect.\n" " Ensure that the disk name is not preceded by 'copy_of_', or blank spaces before or after the disk name.\n\n\n" @askdisk-help ) ) (set #BlankDiskWarning (cat "\nPlease insert a 'blank' disk in the internal\n" "disk drive and click \"Proceed\" when ready." "\n\nWARNING: This procedure will destroy all information " "that may already be on the disk." ) ) (set #FloppyWarningHelp (cat "\nThis procedure uses the 'Format' command to " "wipe and prepare the disk in the internal disk drive." "\n\nWrite-protect your master disk before making a " "backup copy and keep it in a safe place." "\n\nEnsure the blank disk you insert to be formatted " "is write-enabled before clicking the \"Proceed\" button." ) ) (set #FormatWorkingMsgQuick "Please wait...\n\nQuick Formatting a disk.") (set #FormatWorkingMsgSlow "Please wait...\n\nSlow Formatting a disk.") (set #FormatError (cat "\nAn error occured when trying to format this disk.\n\n" "Please ensure that the disk is in the disk drive " "before you click the \"Proceed\" button or " "put another disk in the drive and try again." ) ) (set #FormatCompleteMsg1 (cat " created.\n\nPlease take out the disk " "in the internal disk drive and label it \"" ) ) (set #FormatCompleteMsg2 (cat "\", then click the \"Proceed\" button.") ) (set #DestChoicePrompt "\n\nWhere do you have the Organiser program installed?") (set #FloppyChoiceMsg "On floppy disks") (set #HardDiskChoiceMsg "On a hard disk") (set #DestChoiceHelp (cat "\nSelect the radio button \"On a hard disk\" to " "install the Organiser 96 Plus Pack onto your hard disk.\n\n" "Select the radio button \"On floppy disks\" to " "install the Organiser 96 Plus Pack onto a set of floppy disks.\n\n\n" ) ) (set #HardDiskDestChoiceMsg (cat "\nPlease select the \"Organiser\" drawer on your hard disk, then click the \"Proceed\" button:") ) (set #HardDiskDestChoiceHelp (cat "You should select the \"Organiser\" drawer on your " "hard disk, not where the \"Organiser\" drawer is located." "\n\nTwo new drawers called \"96 Plus Pack Themes\" and " "\"96 Plus Pack Supplements\" will be created in the " "\"Organiser\" drawer, and the Diary Themes and Supplements " "will be put in these drawers.\n\nFor more information on " "using Diary Themes and Supplements with Organiser, refer " "to the Organiser manual, or Organiser's on-line help system." ) ) (set #ArchiveAbortMsg1 "\n\nThere was a problem when trying to dearchive \n\n\"") (set @default-dest "") ;-------------------------------- ; Procedures... ;-------------------------------- (Procedure @UnpackFiles ( (working (cat "\n\nPlease wait...\n\nUnarchiving " #ArchiveType)) (set ExpandName #UnpackFile) (set #ArchiveError 0) (set RunLhx (cat "Lhx -I -m e \"" ExpandName "\" \"" #UnpackDest "\"") ) (set #ArchiveError (run RunLhx)) (if (> #ArchiveError 0) ( (set #ArchiveAbortMsg (cat #ArchiveAbortMsg1 ExpandName "\"")) (abort #ArchiveAbortMsg) ) ) ) ) (Procedure @FormatDisk ( (working #FormatWorkingMsgQuick) (set #FormatName (cat "\"" #FormatDiskName "\"")) (set #FormatCheck (run ("Format drive=df0: name=%s FFS QUICK NOICONS" #FormatName)) ) (if (OR (> #FormatCheck 0) (< #FormatCheck 0)) ( (working #FormatWorkingMsgSlow) (set #FormatCheck (run ("Format drive=df0: name=%s FFS NOICONS" #FormatName)) ) (if (OR (> #FormatCheck 0) (< #FormatCheck 0)) (set #NoError 1) (set #NoError 0) ) ) (set #NoError 0) ) ) ) (Procedure @GetOrganiserDrawer ( ;** Find default drawer (set #DefaultDest (getassign "Work" "d")) (if (= #DefaultDest "") ( (set #DefaultDest (getassign "HD3" "d")) (if (= #DefaultDest "") ( (set #DefaultDest (getassign "HD2" "d")) (if (= #DefaultDest "") ( (set #DefaultDest (getassign "HD1" "d")) (if (= #DefaultDest "") ( (set #DefaultDest (getassign "DH1" "d")) (if (= #DefaultDest "") ( (set #DefaultDest (getassign "HD0" "d")) (if (= #DefaultDest "") ( (set #DefaultDest "DH0:") ) ) ) ) ) ) ) ) ) ) ) ) ;** Ask for destination (set #DestDrawer (askdir (prompt #HardDiskDestChoiceMsg) (help #HardDiskDestChoiceHelp) (default #DefaultDest) ) ) ) ) (Procedure @InstallToHardDisk ( (@GetOrganiserDrawer) (makedir (tackon #DestDrawer "96 Plus Pack Themes")) (makedir (tackon #DestDrawer "96 Plus Pack Supplements" )) (set #UnpackFile "96PlusPackInstall:Archive/Supps1.lha") (set #UnpackDest (tackon #DestDrawer "96 Plus Pack Supplements/")) (set #ArchiveType "Supplements") (@UnpackFiles) (set #UnpackFile "96PlusPackInstall:Archive/Supps2.lha") (set #UnpackDest (tackon #DestDrawer "96 Plus Pack Supplements/")) (set #ArchiveType "Supplements") (@UnpackFiles) (set #UnpackFile "96PlusPackInstall:Archive/Themes.lha") (set #UnpackDest (tackon #DestDrawer "96 Plus Pack Themes/")) (set #ArchiveType "Diary Themes") (@UnpackFiles) (copyfiles (source "96PlusPackInstall:Icons/") (dest #DestDrawer) (pattern ("(96 Plus Pack Supplements.info|96 Plus Pack Themes.info)")) (optional "force") ) ) ) (Procedure @InstallToFloppy ( ;// Format first disk (message #BlankDiskWarning (help #FloppyWarningHelp)) (set #NoError 1) (while (= #NoError 1) ( (run "Wait 4") ; Wait a bit for disk access to stop (set #NoError 1) (set #FormatDiskName "96PlusPack-1") (@FormatDisk) (if (= #NoError 1) (message #FormatError (help #FormatErrorHelp)) ) ) ) (makedir "96PlusPack-1:96 Plus Pack Supplements") (makedir "96PlusPack-1:96 Plus Pack Themes") (message (cat #FormatDiskName #FormatCompleteMsg1 #FormatDiskName #FormatCompleteMsg2)) ;// Format second disk (message #BlankDiskWarning (help #FloppyWarningHelp)) (set #NoError 1) (while (= #NoError 1) ( (run "Wait 4") ; Wait a bit for disk access to stop (set #NoError 1) (set #FormatDiskName "96PlusPack-2") (@FormatDisk) (if (= #NoError 1) (message #FormatError (help #FormatErrorHelp)) ) ) ) (makedir "96PlusPack-2:96 Plus Pack Supplements" (infos)) (message (cat #FormatDiskName #FormatCompleteMsg1 #FormatDiskName #FormatCompleteMsg2)) ;// Make first disk (askdisk (prompt (cat #InsertDiskMsg "96PlusPackInstall" "\"")) (help #DiskHelp) (dest "96PlusPackInstall") ) (makedir "Ram:Archive") (makedir "Ram:Icons") (copyfiles (source "96PlusPackInstall:Archive/") (dest "Ram:Archive") (pattern ("(Supps1.lha|Themes.lha)")) (optional "force") ) (copyfiles (source "96PlusPackInstall:Icons/") (dest "Ram:Icons") (all) (optional "force") ) (askdisk (prompt (cat #InsertDiskMsg "96PlusPack-1" "\"")) (help #DiskHelp) (dest "96PlusPack-1") ) (set #UnpackFile "Ram:Archive/Supps1.lha") (set #UnpackDest "96PlusPack-1:96 Plus Pack Supplements/") (set #ArchiveType "Supplements") (@UnpackFiles) (run "delete Ram:Archive/Supps1.lha") (set #UnpackFile "Ram:Archive/Themes.lha") (set #UnpackDest "96PlusPack-1:96 Plus Pack Themes/") (set #ArchiveType "Diary Themes") (@UnpackFiles) (copyfiles (source "Ram:Icons/") (dest "96PlusPack-1:") (pattern ("96 Plus Pack Themes.info")) (optional "force") ) (copyfiles (source "Ram:Icons/disk1") (dest "96PlusPack-1:") (all) (optional "force") ) (run "delete Ram:Archive/Themes.lha") (askdisk (prompt (cat #InsertDiskMsg "96PlusPackInstall" "\"")) (help #DiskHelp) (dest "96PlusPackInstall") ) (copyfiles (source "96PlusPackInstall:Archive/") (dest "Ram:Archive") (pattern ("Supps2.lha")) (optional "force") ) (askdisk (prompt (cat #InsertDiskMsg "96PlusPack-2" "\"")) (help #DiskHelp) (dest "96PlusPack-2") ) (set #UnpackFile "Ram:Archive/Supps2.lha") (set #UnpackDest "96PlusPack-2:96 Plus Pack Supplements/") (set #ArchiveType "Supplements") (@UnpackFiles) (copyfiles (source "Ram:Icons/disk2") (dest "96PlusPack-2:") (optional "force") (all) ) (run "delete Ram:Archive/Supps2.lha") (run "delete Ram:Archive") (run "delete Ram:Icons/#?") (run "delete Ram:Icons") ) ) ;-------------------------------- ; Start here! ;-------------------------------- (message #Welcome-Message) (run "resident 96PlusPackInstall:Utils/Format") (run "resident 96PlusPackInstall:Utils/lhx") (run "resident 96PlusPackInstall:Utils/Wait") (run "resident 96PlusPackInstall:Utils/Delete") ;// Floppy or HD ? (set #FullPath (expandpath "sys:")) (if (= #FullPath "Organiser:") (set #DiskDefault 1) (set #DiskDefault 0) ) (set #DestinationType (askchoice (prompt #DestChoicePrompt) (choices #HardDiskChoiceMsg #FloppyChoiceMsg ) (help #DestChoiceHelp) (default #DiskDefault) ) ) (if (= #DestinationType 0) (@InstallToHardDisk) (@InstallToFloppy) ) (run "resident Format Remove") (run "resident lhx Remove") (run "resident Wait Remove") (run "resident Delete Remove") (exit "\nFor details of how to use the Supplements and Diary Themes with Digita Organiser, refer to the the Organiser manual, or Organiser's on-line help system.")